home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 081 / upl.arc / SETUSER.UPL < prev    next >
Encoding:
Text File  |  1987-03-08  |  795 b   |  19 lines

  1. ===============================================================================
  2. = An amazingly convenient little program to let you set any item for any user =
  3. = from the DOS command line.  No more TWITUSER, no need for a full SYSOP run  =
  4. = just to tweak one thing...                                                  =
  5. ===============================================================================
  6.  
  7. ifeq @arg1 ""   If entered with no arguments, display command format
  8.   print "Proper format is: UPL @arg0 username variable newsetting"
  9.   print "            i.e.: UPL @arg0 'rick huebner' priv $40extra"
  10.   abort
  11. endif
  12. end
  13. run
  14.  
  15. ifeq @name @arg1
  16.   set @@arg2 @arg3          After setting the variable,
  17.   chain "showuser '@arg1'"  chain to Showuser to provide confirmation.
  18. endif
  19.